home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Tools / HSC Software / 00037.ls < prev    next >
Encoding:
Text File  |  1995-06-10  |  804 b   |  44 lines

  1. on prevFrame
  2.   if the locV of sprite 4 < 480 then
  3.     puppetSprite(3, 1)
  4.   end if
  5.   puppetSprite(4, 1)
  6.   set the locV of sprite 3 to 463
  7.   set the locV of sprite 4 to 525
  8.   go(marker(-1))
  9.   pause()
  10. end
  11.  
  12. on nextFrame
  13.   if the locV of sprite 4 < 480 then
  14.     puppetSprite(3, 1)
  15.   end if
  16.   puppetSprite(4, 1)
  17.   set the locV of sprite 3 to 463
  18.   set the locV of sprite 4 to 525
  19.   go(marker(1))
  20.   pause()
  21. end
  22.  
  23. on lastFrame
  24.   if the locV of sprite 4 < 480 then
  25.     puppetSprite(3, 1)
  26.   end if
  27.   puppetSprite(4, 1)
  28.   set the locV of sprite 3 to 463
  29.   set the locV of sprite 4 to 525
  30.   go("last")
  31.   pause()
  32. end
  33.  
  34. on startFrame
  35.   if the locV of sprite 4 < 480 then
  36.     puppetSprite(3, 1)
  37.   end if
  38.   puppetSprite(4, 1)
  39.   set the locV of sprite 3 to 463
  40.   set the locV of sprite 4 to 525
  41.   go("start")
  42.   pause()
  43. end
  44.